home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 65.zip / BS1 part 65 / Chemistetics v2.00.adf / STV / source / func.h < prev    next >
C/C++ Source or Header  |  1991-01-09  |  2KB  |  62 lines

  1. /*********************************
  2. *  FUNCtions.H  01/02/91
  3. *  Header file for STV
  4. *  © Copyright 1990 Timm Martin
  5. *  All Rights Reserved Worldwide
  6. **********************************/
  7.  
  8. #ifndef STV_FUNC_H
  9. #define STV_FUNC_H
  10.  
  11. #ifndef EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14. #ifndef INTUITION_INTUITION_H
  15. #include <intuition/intuition.h>
  16. #endif
  17. #ifndef STV_MAIN_H
  18. #include "main.h"
  19. #endif
  20.  
  21. /* display.c */  void   end_down( void );
  22. /* display.c */  void   end_up( void );
  23. /* file.c    */  void   file_free( void );
  24. /* file.c    */  BOOL   file_load( void );
  25. /* file.c    */  void   file_name( char *name );
  26. /* file.c    */  SELECT file_read( char *name, SELECT prev, SELECT next );
  27. /* file.c    */  void   file_select( void );
  28. /* file.c    */  BOOL   file_size( void );
  29. /* gadget.c  */  void   gadget_add( void );
  30. /* gadget.c  */  void   gadget_current( void );
  31. /* display.c */  void   initialize( void );
  32. /* input.c   */  SELECT input_keys( struct IntuiMessage *imessage );
  33. /* input.c   */  SELECT input_window( SELECT prev, SELECT next );
  34. /* display.c */  void   line_check( void );
  35. /* display.c */  void   line_down( BOOL modify );
  36. /* display.c */  void   line_up( BOOL modify );
  37. /* main.c    */  void   main( int argc, char *argv[] );
  38. /* menu.c    */  void   menu_add( void );
  39. /* menu.c    */  SELECT menu_pick( int menu, int item );
  40. /* menu.c    */  void   menu_prevnext( SELECT prev, SELECT next );
  41. /* gadget.c  */  void   modify_vprop( void );
  42. /* gadget.c  */  void   move_vprop( BOOL check );
  43. /* display.c */  void   page_down( void );
  44. /* display.c */  void   page_up( void );
  45. /* main.c    */  BOOL   parse_arguments( int argc, char *argv[] );
  46. /* pointer.c */  void   pointer_close( void );
  47. /* pointer.c */  void   pointer_open( void );
  48. /* main.c    */  void   program_begin( void );
  49. /* main.c    */  void   program_end( char *error );
  50. /* display.c */  void   refresh_display( void );
  51. /* display.c */  void   scroll_display( void );
  52. /* search.c  */  void   search( void );
  53. /* search.c  */  void   search_again( void );
  54. /* text.c    */  void   text_display( void );
  55. /* text.c    */  void   text_line( int line );
  56. /* text.c    */  void   text_string( int line, int start, int length );
  57. /* window.c  */  void   window_close( void );
  58. /* window.c  */  void   window_open( void );
  59. /* window.c  */  void   window_resized( void );
  60.  
  61. #endif
  62.